home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993 April: Penguin on DISC / ADC Developer CD (1993-04) (''Penguin On DISC'')_iso / Dev.CD Apr 93.iso / Utilities / MPW Interfaces 7.1 Beta / AIncludes / Menus.a < prev    next >
Encoding:
Text File  |  1992-08-28  |  1.3 KB  |  41 lines  |  [TEXT/MPS ]

  1. ;
  2. ;    File:        MenuMgr.a
  3. ;
  4. ;    Contains:    Public equates and macros for using menu manager public calls
  5. ;
  6. ;    Written by:    Kevin S. MacDonell
  7. ;
  8. ;    Copyright:    © 1991 by Apple Computer, Inc., all rights reserved.
  9.  
  10.  
  11.  
  12.  
  13. ;————————————————————————————————————————————————————————————————————————————————————————————————————
  14.     IF &TYPE('__INCLUDINGMENUS__') = 'UNDEFINED' THEN
  15. __INCLUDINGMENUS__    SET    1
  16.  
  17.     IF &TYPE('__INCLUDINGTRAPS__') = 'UNDEFINED' THEN
  18.                     INCLUDE 'Traps.a'
  19.     ENDIF
  20. ;————————————————————————————————————————————————————————————————————————————————————————————————————
  21. ; Define the Menu Manager Dispatch trap opword
  22. _MenuDispatch                OPWORD        $A825
  23.  
  24. ;————————————————————————————————————————————————————————————————————————————————————————————————————
  25. ; Define the new selectors for the Menu Manager
  26. selectInsrtFontResMenu        EQU    0
  27.  
  28. ;————————————————————————————————————————————————————————————————————————————————————————————————————
  29. ; Define the parameter size passed for each call
  30. paramWordsInsrtFontResMenu    EQU    4
  31.  
  32. ;————————————————————————————————————————————————————————————————————————————————————————————————————
  33. ; Define the dispatch macros to get to the calls
  34.  
  35.         MACRO
  36.         _InsrtFontResMenu
  37.         DoDispatch _MenuDispatch,selectInsrtFontResMenu,paramWordsInsrtFontResMenu
  38.         ENDM
  39.  
  40.     ENDIF            ; Already included
  41.